home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr48 / unzipsrc.zip / UNZIP.DOC < prev   
Text File  |  1993-04-16  |  4KB  |  136 lines

  1.  
  2.  
  3.                                  UnZip
  4.  
  5.                          Version 1.1, 03-08-89
  6.  
  7.                         Zipfile Extract Utility
  8.  
  9.                               UnZip11.ZIP
  10.  
  11.         Copyright (C) 1989 Samuel H. Smith;  ALL RIGHTS RESERVED
  12.  
  13.  
  14.                      This program is supported by:
  15.  
  16.                            The Tool Shop BBS
  17.                               Phoenix, AZ
  18.                           (602) 264-3969 (HST)
  19.                       (602) 279-2673 (HAYES 9600)
  20.  
  21.  
  22. 'UnZip' is a small zipfile extract utility.  It is written to be as
  23. small portable as possible and is intended to be starting point for
  24. implementation of .ZIP files in non-IBM environments.
  25.  
  26. Source code is provided in C and Turbo Pascal.  If you port this
  27. program to a non-IBM system, I would appreciate a copy of the ported
  28. source and exe files.
  29.  
  30.  
  31. Usage
  32. -----
  33.    unzip filename               ;C version
  34.    unz filename                 ;pascal version
  35.  
  36. Example
  37. -------
  38.    unzip test
  39.    unzip test.z
  40.  
  41.  
  42. Revision history
  43. ----------------
  44. 3-8-89
  45.    Moved operating specific code to a block of lines starting around
  46.    line 180.  Added code to swap bytes on host machines that store the
  47.    high order bytes in lower address locations than the low order bytes.
  48.  
  49. 3-6-89
  50.    Corrected end-of-file detection in both shrink and reduce expanders.
  51.    Resulting files should now always have the correct size.  Added
  52.    ".ZIP" default to unzip.c to match calling conventions of unz.pas.
  53.  
  54. 3-5-89
  55.    First fully operational release.  Does not implement CRC
  56.    verification, but should correctly unzip all compression methods.
  57.  
  58. 3-3-89
  59.  
  60.    Initial alpha test release.  The 'unshrink' procedure is now working
  61.    partially.  It stops when the 'partial clear' code is received (this
  62.    happens after about 30k of text has already been seen).  Look for a
  63.    fix to this last unshrink bug in the next week.
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. LICENSE
  71. =======
  72.  
  73. SourceWare: What is it?
  74. -----------------------
  75.    SourceWare is my name for a unique concept in user supported
  76.    software.
  77.  
  78.    Programs distributed under the SourceWare concept always offer
  79.    complete source code.
  80.  
  81.    This package can be freely distributed so long as it is not modified
  82.    or sold for profit.  If you find that this program is valuable, you
  83.    can send me a donation for what you think it is worth.  I suggest
  84.    about $10.
  85.  
  86.  
  87.    Send your contributions to:
  88.  
  89.               Samuel. H. Smith
  90.               5119 N. 11 ave 332
  91.               Phoenix, Az 85013
  92.  
  93.  
  94. Why SourceWare?
  95. ---------------
  96.    Why do I include source code?  Why isn't the donation mandatory?  The
  97.    value of good software should be self-evident.  The source code is
  98.    the key to complete understanding of a program.  You can read it to
  99.    find out how things are done.  You can also change it to suit your
  100.    needs, so long as you do not distribute the modified version without
  101.    my consent.
  102.  
  103.  
  104. Copyright
  105. ---------
  106.    If you modify this program, I would appreciate a copy of the new
  107.    source code.  I am holding the copyright on the source code, so
  108.    please don't delete my name from the program files or from the
  109.    documentation.
  110.  
  111.  
  112.  
  113.  
  114. SUPPORT
  115. =======
  116.    I work very hard to produce a software package of the highest quality
  117.    and functionality.  I try to look into all reported bugs, and will
  118.    generally fix reported problems within a few days.
  119.  
  120.    Since this is user supported software under the SourceWare concept, I
  121.    don't expect you to contribute if you don't like it or if it doesn't
  122.    meet your needs.
  123.  
  124.    If you have any questions, bugs, or suggestions, please contact me
  125.    at:
  126.  
  127.                The Tool Shop BBS
  128.                (602) 264-3969 (HST 9600)
  129.                (602) 279-2673 (HAYES 9600)
  130.  
  131.    The latest version is always available for downloading.
  132.  
  133.    Enjoy!      Samuel H. Smith
  134.                Author and Sysop of The Tool Shop.
  135.  
  136.